Adding a New Page Size Option to the Print from Web ToolIntroduction:The Print from Web tool prints process maps (and other web pages) from a process library website. A printable image is created, the size and orientation of which is defined in the Settings XML file. Triaster\TriasterServer2011\Settings\Settings.xml Configuring Print SizesSettings GroupsWhen PRINT is clicked from the website toolbar, the size and orientation can be chosen from a drop-down list box, where the list items are defined as Settings Groups in the Settings file. < SettingsGroup Name="A4 Portrait"> < PageSetup> < !-- Size Specifies a paper size as defined by ProcessNavigator/PrintFromWeb/PaperSizes/PaperSize --< < Size > A4 </Size> < !-- Orientation Portrait or Landscape --> < Orientation>Portrait< /Orientation> < /PageSetup> < Margins> < !-- Margins are defined as Portrait --> < Left>19.05< /Left> < Right>19.05< /Right> < Top>19.05< /Top> < Bottom>19.05< /Bottom> < /Margins> < /SettingsGroup> The order in which the items are displayed in the list box is the order in which they are recorded in the Settings file. If there is to be a default setting, it should be the first Settings Group defined. Note: There is a 'Default' attribute of a 'SettingsGroup' tag, which, if set to 'True', sets that Settings Group as the default one when the facility to choose the size and orientation is switched off (a configuration that needs to be made directly in the Settings XML file).Paper Size<PaperSizes> < !-- Paper sizes are defined as Portrait in millimeters--> < PaperSize Name="A0"> < Width> 841< /Width> < Height> 1189< /Height> < /PaperSize> < PaperSize Name="A1"> < Width> 594< /Width> < Height> 841< /Height> < /PaperSize> < PaperSize Name="A2"> < Width> 420< /Width> < Height> 594< /Height> < /PaperSize> < PaperSize Name="A3"> < Width> 297< /Width> < Height> 420< /Height> < /PaperSize> < PaperSize Name="A4"> < Width> 210< /Width> < Height> 297< /Height> < /PaperSize> etc. A Settings Group will take its size configuration from a reference to the Name attribute of the appropriate Paper Size setting. Creating a New Page Size OptionThe standard set of Settings Groups in the Settings XML file does not include all of the Paper Sizes defined. If a new Settings Group is required (for example, the standard paper sizes in the US and Canada are different from those in Europe), it's easy to define a new one, especially if the the corresponding Paper Size already exists.
<PrintFromWeb> <SettingsGroup Name="A4 Portrait"> <PageSetup> <!-- Size Specifies a paper size as defined by ProcessNavigator/PrintFromWeb/PaperSizes/PaperSize --> <Size>A4</Size> <!-- Orientation Portrait or Landscape --> <Orientation>Portrait</Orientation> </PageSetup> <Margins> <!-- Margins are defined as Portrait --> <Left>19.05</Left> <Right>19.05</Right> <Top>19.05</Top> <Bottom>19.05</Bottom> </Margins> </SettingsGroup> <SettingsGroup Name="A4 Landscape"> etc. |